home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 April / Electronic Clipper 1998-04.iso / Idea Source® / Gallery.Dir / 00006_Script_go the frame < prev    next >
Text File  |  1998-02-23  |  332b  |  20 lines

  1. on exitFrame
  2.   
  3.   go the frame
  4.   
  5.   repeat with n=9 to 13
  6.     if rollover(n) then
  7.       set the visible of sprite n to false
  8.       updatestage
  9.     end if
  10.   end repeat
  11.   
  12.   repeat with n=9 to 13
  13.     if not rollover(n) then
  14.       set the visible of sprite n to true
  15.       updatestage
  16.     end if
  17.   end repeat
  18.   
  19. end
  20.